From: Colin Walters Date: Wed, 11 Oct 2023 12:15:25 +0000 (-0400) Subject: ci: Disable composefs test for now X-Git-Tag: archive/raspbian/2023.7-3+rpi1^2~16^2^2~11^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=734ea3ee379591a5e2e56f83319c5be01e17e952;p=ostree.git ci: Disable composefs test for now Need to change the framework to boot with an Ignition config that switches to ext4 soon. --- diff --git a/ci/prow/fcos-e2e.sh b/ci/prow/fcos-e2e.sh index 9d42dcce..3151898b 100755 --- a/ci/prow/fcos-e2e.sh +++ b/ci/prow/fcos-e2e.sh @@ -12,4 +12,4 @@ rsync -rlv /cosa/component-install/ overrides/rootfs/ cosa fetch cosa build # For now, Prow just runs the composefs tests, since Jenkins covers the others -cosa kola run 'ext.ostree.destructive-rs.composefs*' +#cosa kola run 'ext.ostree.destructive-rs.composefs*' diff --git a/tests/inst/src/composefs.rs b/tests/inst/src/composefs.rs index 4e0ad66e..219b9e12 100644 --- a/tests/inst/src/composefs.rs +++ b/tests/inst/src/composefs.rs @@ -131,6 +131,7 @@ fn verify_composefs_signed(sh: &xshell::Shell, metadata: &glib::VariantDict) -> Ok(()) } +#[allow(dead_code)] pub(crate) fn itest_composefs() -> Result<()> { let sh = &xshell::Shell::new()?; if !cmd!(sh, "ostree --version").read()?.contains("- composefs") { diff --git a/tests/inst/src/insttestmain.rs b/tests/inst/src/insttestmain.rs index 1613385c..2da35ffe 100644 --- a/tests/inst/src/insttestmain.rs +++ b/tests/inst/src/insttestmain.rs @@ -33,7 +33,7 @@ const TESTS: &[StaticTest] = &[ ]; const DESTRUCTIVE_TESTS: &[StaticTest] = &[ test!(destructive::itest_transactionality), - test!(composefs::itest_composefs), + // test!(composefs::itest_composefs), ]; #[derive(Debug, StructOpt)]